GetValueFastDelegate<T> Delegate
In This Topic
A Delegate to get a property value from an object.
Syntax
'Declaration
Public Delegate Sub GetValueFastDelegate(Of )( _
ByVal As Object, _
ByRef As _
)
public delegate void GetValueFastDelegate<>(
object ,
out
)
Parameters
- obj
- The obj to get the property from.
- value
- The value to get.
Type Parameters
- T
- Type of the getter.
See Also